home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-12 | 1.3 KB | 34 lines | [TEXT/BROW] |
- // ===========================================================================
- // USoundPlayer.h © 1995, Éric Forget. All rights reserved.
- // ===========================================================================
- //
- // ************************************************************************
- // * *
- // * Before using this code you should read the "License Agreement" *
- // * document and agree with it. *
- // * *
- // ************************************************************************
- //
- // Instruction and usage notes are in the USoundPlayer.cp file.
- //
- // ---------------------------------------------------------------------------
-
-
- #pragma once
-
- #include <LAttachment.h>
-
- // ===========================================================================
- // • CSoundAttachment CSoundAttachment •
- // ===========================================================================
- class CSoundAttachment : public LAttachment {
- public:
- CSoundAttachment(const char* inSoundName,
- MessageT inMessage = msg_AnyMessage,
- Boolean inExecuteHost = true);
- protected:
- virtual void ExecuteSelf(MessageT inMessage, void *ioParam);
- // data storage
- Str255 mSoundName;
- };
-